gpt4 book ai didi

php - 字符串中的引号

转载 作者:行者123 更新时间:2023-12-03 08:12:22 25 4
gpt4 key购买 nike

以下代码不断给我这个错误

Parse error: syntax error, unexpected T_VARIABLE in ...




   $query_string = 'this is a test... "this is in quotes" mmm..chicken burgers... yummm...';
preg_match_all("/\".*\"|[^\s]*/", ­ $query_string, $matches);
echo "Matches:";
foreach($matches[0] as $token) {
echo $token . "<br />";
}

就是这个 web page

最佳答案

您是否已查看所记录的错误消息中提到的行?
您是否查看过该行之前的行,以确保每行都以分号“;”结尾,并已使用正确的运算符连接变量“。”等?

这听起来像一个简单的PHP语法错误。

我只是在XAMPP服务器上运行以下代码,而没有明显的错误消息:

<?php

$query_string = 'this is a test... "this is in quotes" mmm..chicken burgers... yummm...';
preg_match_all("/\".*\"|[^\s]*/", $query_string, $matches);
echo "Matches:";
foreach($matches[0] as $token) {
echo $token . "<br />";
}

关于php - 字符串中的引号,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4007320/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com