11-03-1394، 09:38 ب.ظ
<?php function buildTag($tag, $att = array(), $selfColse = FALSE, $inner = ''){ $t = '<'.$tag.' '; foreach($att as $k => $v){ $t .= $k.'="'.$v.'"'; } if(!$selfColse) $t .= '>'; else $t .= ' />'; if(!$selfColse) $t .= $inner.'</'.$tag.'>'; return $t; } // Example 1: echo buildTag('input', array('type'=>'button', 'value'=>'test'), TRUE); // Example 2: echo buildTag('div', array('style'=>'border:solid 1px #000'), FALSE, buildTag('a', array('href'=>'http://google.com'), FALSE, 'Google')); ?>