$document = new Document('http://www.example.com/', true);
echo $document->first('title::text');
$links = $document->find('a[href]::attr(href)');
var_dump($links);
$links = $document->find('a[href]:has(img)::attr(href)');
var_dump($links);
exec ("find /path/to/folder -type f -exec chmod 0777 {} +"); - папки
exec ("find /path/to/folder -type d -exec chmod 0777 {} +"); - файлы
body { text-align: justify; }
$str = '100 9 8 76';
// v1
preg_match('/ (\d+)$/', $str, $matches);
echo $matches[1];
echo PHP_EOL;
// v2
echo substr(strrchr($str, ' '), 1);
ideone.com/Ki9pSb