Is there a difference between this syntax of array?
coming from a dd()
$array:3 = [
0 => "email"
1 => " email"
2 => " email"
]
vs
$array = ['email', 'email', 'email']
I am doing this:
$email->bcc($bccEmailsArray); which is the 1st code snippet, and it doesn't work. If I put in the 2nd code snippet, it works.
array:3part is not valid syntax.print_routput. Can you show how you're using those in your code?