Hey,
I am currently using the .php script in Zoom V6. I receive this message if I enter a phrase in quotes that contains space. For example, "orders" works fine but "order types" produces the error message.
A quick search on Google notes that the split functionality is deprecated in PHP version 5.3.0 (which I'm currently running). One suggestion I found is to replace split () with explode () in the script. Will this possibly fix the problem?
Also, the search does work so I'm wondering if alternatively I could simply suppress the error message.
Thanks,
Andre
Full error message: Deprecated: Function split() is deprecated in C:\wamp\www\Search\search.php on line 1827
I am currently using the .php script in Zoom V6. I receive this message if I enter a phrase in quotes that contains space. For example, "orders" works fine but "order types" produces the error message.
A quick search on Google notes that the split functionality is deprecated in PHP version 5.3.0 (which I'm currently running). One suggestion I found is to replace split () with explode () in the script. Will this possibly fix the problem?
Also, the search does work so I'm wondering if alternatively I could simply suppress the error message.
Thanks,
Andre
Full error message: Deprecated: Function split() is deprecated in C:\wamp\www\Search\search.php on line 1827
Comment