(22 дек 2012, 16:21) (
0/
0)
[
0]
Получаем title страницы
<?php
$url = \'http://sait.ru\';
$file = file_get_contents($url);
$file = preg_match(\'|<title>(.*?)</title>|si\',$file,$title);
echo $title[\'1\'];
?>
(22 дек 2012, 16:20) (
0/
0)
[
0]
Определяем формат файла
<?php
$file = \'file.txt\';
$format = end(explode(\'.\',$file));
echo $format[\'0\'];
?>
(22 дек 2012, 16:20) (
0/
0)
[
0]
Получаем все ссылки с сайта
<?php
$file = file_get_contents(\'http://sait.ru\');
$file = preg_match_all(\'|href=\"(.?*)\"|si\',$file,$res);
foreach ($res[\'1\'] as $url)
echo $url . \'<br />\';
?>
(22 дек 2012, 16:19) (
0/
0)
[
0]
Ищем слово в файле или на сайте
<?php
$slovo = \'Привет\';
$file = \'file.txt\';
$search = file_get_contents($file);
if (preg_match($slovo,$search))
echo \'Слово \' . $slovo . \' найдено\';
else
echo \'Слово \' . $slovo . \' ненайдено\';
?>
(22 дек 2012, 16:17) (
0/
0)
[
0]
Получаем ASCII коды
<?php
for ($i = 32; $i <= 255; ++$i)
echo \'&#\' . $i;
?>
Пример:
!\"#$%&\'()*+,-./0123456789:;<=>?Удалён ¡¢£¤¥¦§¨©ª«¬®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖ×ØÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ
(22 дек 2012, 16:16) (
0/
0)
[
0]
Таблица умножения
<?php
echo \'<table cellpadding=\"5\" border=\"2\">\';
for ($i = 1; $i <= 10; ++$i){
echo \'<tr>\';
for ($x = 1; $x <= 10; ++$x)
echo \'<td>\' . $x * $i . \'</td>\';
echo \'</tr>\';
}
echo \'<table>\';
?>
Скрин:
http://upwap.ru/2850624