我试图加载一个 xml 文档并过滤掉包含(FDS)的所有内容。
我的代码如下所示:
<?php
$xml = simplexml_load_file('http://outfits.zwinky.com/users/220/287/_perverted/purchased.xml');
$pattern = '/zwinky/fds/[^"]*';
$subject = '$xml';
preg_match ( string $pattern , string $subject [, array $matches [, int $flags = 0 [, int $offset = 0 ]]] )
print_r($matches);?>
任何想法我做错了什么?