I want to pass parameters in a file that will run background in order to send emails.
shell_exec("php /path/to/the/background/script.php '$arrayObjects' > /dev/null &");
When I var_dump the parameter $arrayObjects I get as output
Array
actually it is passed as string.
Does someone know how to pass arrays?
php shell_exec is a command line interface so it can only accept strings as arguments.
if you haven't solved it yet then maybe you can use
foreach
loop to execute mail script for each mail.try this:
Hope this helps.