ひもを切ろうとします。「 」が見つかるまですべてを取り出してください。
$ret = $html->find('td[class="date"]');
$pole = array();
foreach ($ret as $pole) {
$datum[] = $pole->innertext; // getting text what i need from HTML(simple html dom)
}
echo "$datum[0]"; //output of this is: 04.07.2013 Film Europe
$text_arr = str_split($datum[0]); //string to array
foreach($text_arr as $x){
if($x==" ") break; //if find space stop!
echo $x;
}
私は100%私のコードは正しいですが、機能していません.echo $xは何もしません:)、その変数に何も保存されていないかのように