Follow along with the video below to see how to install our site as a web app on your home screen.
Бележка: This feature may not be available in some browsers.
Soul_Stealler каза:Ем ... wordwrap ?![]()
http://bg2.php.net/manual/en/function.wordwrap.php
<?php
$text = "A very long woooooooooooord.";
$newtext = wordwrap($text, 8, " ", true);
echo "$newtext";
?>
и аз го ползвам мн яко А?DJCharge каза:Това за wordwrap не го знаех, даже май не съм го чувал.. :roll:
Благодарско, +1 :?:
<?
$position=20; // Колко символа да показва
$message="<a href=''>Това е примерен текст!</a>";
$post = substr($message, 0, $position);
echo $post;
echo "...";
?>
<?php $directory = opendir('free/');
while ($files = readdir($directory)) { $file_array[] = $files; }
$br = 0;
foreach ($file_array as $files) {
if ($files == ".." || $files == ".") { continue; }
$br++;
$newfiles = substr($files,0 , 50); //<<<<<<<<<
echo $br." <a href=\"free/".$files."\">".$newfiles."</a> ";
$file = "free/".$files;
$size = filesize($file);
$i=0;
$iec = array( " Bytes", " KB", " MB", " GB", " TB", " PB", " EB", " ZB", " YB");
while (($size/1024)>1) {
$size=$size/1024;
$i++;
}
echo substr($size,0,strpos($size,'.')+4).$iec[$i];
echo "<br>";
}
?>