View Single Post
ישן 04-10-08, 20:47   # 2
Gal Shafrir
חבר וותיק
 
מיני פרופיל
תאריך הצטרפות: Oct 2005
הודעות: 1,626

Gal Shafrir לא מחובר  

אתה יכול לעשות משהו בסגנון:
PHP קוד:
$var 'some';
$content 'some content';
    
preg_match("/{$var}/i",$content,$matches);

foreach(
$matches as $match) {
    print 
$match;

  Reply With Quote