好的要清楚我举个例子
$email = 'name@example.com';
$domain = strstr($email, '@');
echo $domain; // prints @example.com
$user = strstr($email, '@', true); // As of PHP 5.3.0
echo $user; // prints name
正如它所说,它使用true打印'@'之前的内容,并使用空白打印@之后的内容
我正在寻找一个函数来打印@本身,给它2个字符串并抓住它们之间的内容
像这样
$string= 'someXthing';
$tograb = phpfunction("some","thing");
echo $tograb; // should be printing X
^ 这不起作用,我只是写它来解释