Ò׽ؽØÍ¼Èí¼þ¡¢µ¥Îļþ¡¢Ãâ°²×°¡¢´¿ÂÌÉ«¡¢½ö160KB

[PHP]SmartyµÄʹÓÃ

<?php
define('SMARTY_TMP_DIR','C:/php5/Smarty-2.6.13/');
define('SMARTY_DIR','C:/php5/Smarty-2.6.13/libs/'); //SMARTY_DIR ->smarty keyword,must be defined as libs dectory
require_once(SMARTY_DIR.'Smarty.class.php');
//½¨Á¢Ò»¸ösmarty¶ÔÏó
$smarty = new Smarty;
$smarty->template_dir = SMARTY_TMP_DIR.'templates/';
$smarty->compile_dir = SMARTY_TMP_DIR.'templates_c/';
$smarty->config_dir = SMARTY_TMP_DIR.'configs/';
$smarty->cache_dir = SMARTY_TMP_DIR.'cache/';
//$smarty->left_delimiter = '{/';
//$smarty->right_delimiter = '/}';
//----------simple show example------------
//$smarty->assign('name','Porky');
//$smarty->display('smarty_test.tpl');
?>


Ïà¹ØÎĵµ£º

Ö§³ÖUCenterµÄPHP½¨Õ¾³ÌÐòÒ»ÀÀ

½¨Õ¾³ÌÐòÊÇÕ¾³¤ÔËÓªÍøÕ¾µÄ¸ù±¾£¬ÈçºÎ½áºÏÕûºÏ¸÷¸ö²»Í¬ÏµÍ³µÄ³ÌÐò¡¢Êý¾Ý±í¡¢¼Ü¹¹£¬ÌṩͳһµÄÍøÕ¾»áԱϵͳ£¬Ò»Ö±ÊÇÀ§ÈźܶàÕ¾³¤µÄÎÊÌ⣬¶øÊ¹ÓÃUCenter¿ÉÒÔ½ÏΪ¼òµ¥µÄʵÏÖ²»Í¬ÏµÍ³Ö®¼äµÄÕûºÏÎÊÌâ¡£
¡¡¡¡UCenterÊÇ¿µÊ¢´´ÏëÍÆ³öµÄÃâ·Ñ¿ªÔ´µÄ½¨Õ¾¹¤¾ß£¬ÊǸ÷¸ö½¨Õ¾²úÆ·Ö®¼äÐÅÏ¢Ö±½Ó´«µÝµÄÒ»¸ö¹¤¾ß£¬¿µÊ¢µÄTeamÔÚÆäDiscuzÂÛ̳ÉÏÊÕ ......

¹úÍâÊ®´ó×îÁ÷ÐÐPHP¿ò¼ÜÅÅÃû X


±¾ÎÄÀ´×Ô¹úÍâµÄÒ»¸öPHP¼¼ÊõÈËÔ±ÍøÕ¾£¬×ܽáÁ˹úÍâµÄÊ®¸öĿǰ×îÁ÷ÐеÄPHP
MVC¿ò¼Ü¡£¾ßÌåÅÅÃû˳Ðòδ±Ø×¼È·£¬»¹ÓÐЩ֪Ãû¿ò¼Ü£¬ÈçKohanaµÈҲûÓÐÌá¼°¡£²»¹ýÈÔ¿ÉÒÔ×öΪһƪ²»´íµÄ²Î¿¼¡£
ÒÔÏÂΪʮ¸öĿǰ×îÁ÷ÐеĻùÓÚMVCÉè¼ÆÄ£Ê½µÄPHP¿ò¼Ü¡£
1. Yii
YiiÊÇÒ»¸ö»ùÓÚ×é¼þµÄ¸ßÐÔÄܵÄPHPµÄ¿ò¼Ü£¬ÓÃÓÚ¿ª·¢´ó¹æÄ£WebÓ¦Óá£Yii²ÉÓÃÑ ......

PHPÑéÖ¤ÂëÉú³É½Å±¾£¨5λÊý×Öpng¸ñʽ£©


<?php
header("Content-Type:image/png");
srand((double)microtime()*1000000);
$img_height=20;
$img_width=60;
$im=@imagecreate($img_width,$img_height) or die("²»Äܳõʼ»¯GDÎļþÁ÷");
$background_color=imagecolorallocate($im,255,255,255);
$text_color=imagecolorallocate($im,233,14,91);
......

[PHP]PDOµ÷Óô洢¹ý³Ì

1. Êý¾Ý¿âÖÐÒÑ´´½¨´æ´¢¹ý³Ìuser_logon_check, PHPµ÷ÓÃʾÀýÈçÏÂ,
<?php
$dsn = 'mssql:dbname=MyDbName;host=localhost';
$user = 'sa';
$password = '666666';
try {
$dbCon = new PDO($dsn, $user, $password);
} catch (PDOException $e) {
print 'Connection failed: '.$e->getMessage();
......
© 2009 ej38.com All Rights Reserved. ¹ØÓÚE½¡ÍøÁªÏµÎÒÃÇ | Õ¾µãµØÍ¼ | ¸ÓICP±¸09004571ºÅ