dongxia2030 2015-02-11 17:45
浏览 31
已采纳

PHP正则表达式删除字符串

I've a small PHP script that I use to fetch data. Probably there is a regex error here, yet I am unable to solve.

The output I get is something like below. If I try $title[3][1], I get the output following output : string(30) "30charstitle"

var_dump($title[3][1]); gives-> string(30) "30charstitle"   
var_dump($title[3][2]); gives-> string(50) "50charstitle"    
var_dump($title[3][3]); gives-> string(100) "100charstitle"

I want to remove the string part and double quotes from the output, but I got stuck. Basically all I need is the title itself, excluding double quotes and length of the string.

function siteConnect($site) {
        $ch = curl_init();
        $hc = "YahooSeeker-Testing/v3.9 (compatible; Mozilla 4.0; MSIE 5.5; Yahoo! Search - Web Search)";
        curl_setopt($ch, CURLOPT_REFERER, 'http://www.google.com');
        curl_setopt($ch, CURLOPT_URL, $site);
        curl_setopt($ch, CURLOPT_USERAGENT, $hc);
        curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
        $site = curl_exec($ch);
        curl_close($ch);

        // preg_match
        preg_match_all('@><a itemprop="url" href="http://www.example.com/id/(.*?)/(.*?).html&path=(.*?)"><span itemprop="name">(.*?)</span></a>@',$site,$title);
        $title[3][1] = strip_tags($title[3][1]);
        $title[3][1] = preg_replace('~.*?>~', '', $title[3][1]);
        var_dump($title[3][1]);
    }
    $enter = siteConnect('http://www.example.com/index.php?route=product/category&path=5_6&page=1');
  • 写回答

2条回答 默认 最新

  • duanbozhong9689 2015-02-11 17:51
    关注

    Replace this:

    var_dump($title[3][1]);
    

    That:

    print($title[3][1]);
    

    Or:

    echo $title[3][1];
    

    For multi-arrays better:

    print_r($title);
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 如何让企业微信机器人实现消息汇总整合
  • ¥50 关于#ui#的问题:做yolov8的ui界面出现的问题
  • ¥15 如何用Python爬取各高校教师公开的教育和工作经历
  • ¥15 TLE9879QXA40 电机驱动
  • ¥20 对于工程问题的非线性数学模型进行线性化
  • ¥15 Mirare PLUS 进行密钥认证?(详解)
  • ¥15 物体双站RCS和其组成阵列后的双站RCS关系验证
  • ¥20 想用ollama做一个自己的AI数据库
  • ¥15 关于qualoth编辑及缝合服装领子的问题解决方案探寻
  • ¥15 请问怎么才能复现这样的图呀