i am trying to parse the sentence and split it into words
$allwords=split(” “,$mybigsentence);
i am getting this error in the above line
Deprecated: Function split() is deprecated in
C:\xampp\htdocs\projecte\src\admin\botloaderfuncs.php
what is going wrong in it.
using php 5.0.3
From: https://www.php.net/split
DEPRECATED means it will be removed soon in future PHP versions.
Take a look at this solution: Split text into words and consider numbers with decimals as a whole "word"
Should definitely give the code you need, the proper way.