我有两个刺痛:
$var_x = "Depending structure";
$var_y = “Depending on the structure of your array ";
你能告诉我我怎么知道var_x中有多少个单词在var_y中?为了做到这一点,我做了以下事情:
$pieces1 = explode(" ", $var_x);
$pieces2 = explode(" ", $var_y);
$result=array_intersect($pieces1, $pieces2);
//Print result here?
但这并没有显示多少 var_x 单词在 var_y