View Single Post
ישן 09-03-08, 22:57   # 8
Meir
חבר מתקדם
 
מיני פרופיל
תאריך הצטרפות: Dec 2006
גיל: 34
הודעות: 383

Meir לא מחובר  

ככה:

PHP קוד:
<?php
$file_string 
file_get_contents('yourfile');
foreach (
explode("\n"$file_string) as $line) {
    if (
substr_count($file_string$line) % == 0) {
        
$file_string str_replace($line'#'$file_string);
    }
}
echo 
$file_string;
?>
__________________
רק אחרי שנמצאים בחושך, אפשר להעריך את האור.
  Reply With Quote