如何删除不需要的字符

发布于 2024-09-11 18:08:38 字数 192 浏览 5 评论 0原文

我正在使用 cakephp 1.2。我正在使用 httpsocket get 方法。效果很好。但内容用引号引起来。

string(123)“..这就是内容所在的位置”。

我认为它告诉了响应的类型和输出的字符数。我在生产设置中有我的应用程序。

我怎样才能删除它。

我很感激任何帮助。

谢谢。

I am using cakephp 1.2. I am using httpsocket get method. It works well. But the content is enclosed by quotes..

string(123) "..this is where the content is".

I think it is telling the type of response and the number of characters of the output. I have my application in production setup.

How can i remove it.

I appreciate any help.

Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

想挽留 2024-09-18 18:08:38

听起来另一端正在执行 var_dump。

或者,这应该提取文本。

preg_match('~"(.*)"~s', $string, $matches);

if (!empty($matches)) {
    $returned  = $matches[1];
}

echo $returned; 

希望我的正则表达式并不可怕。

It sounds like a var_dump is being done on the other end.

Either or, this should pull out the text.

preg_match('~"(.*)"~s', $string, $matches);

if (!empty($matches)) {
    $returned  = $matches[1];
}

echo $returned; 

Hopefully my regex isn't horrible.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文