ubuntu cron Ö´ÐÐphp Îļþ
1.È·ÈÏϵͳÖа²×°ÁËphp-cli
°²×°ÃüÁî:
apt-get install php5-cli
2.н¨Óû§crontab
ÃüÁ
crontab -e
ÎÒµÄcrontabÄÚÈÝÎļþÈçÏ£º
# m h dom mon dow command
SHELL=/bin/sh
PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin
* */1 * * * /root/myshell/proj1.sh
*/1 * * * * date >> /root/test.txt
×¢£ºÒ»¶¨ÒªÓÐPATH£¬·ñÔòcron²»»áÔËÐÐ,¿ÉÒԲο¼ÏµÍ³ÖеÄcrontab
È»ºóÔÚproj1.shÀï¿ÉÒÔдҪÔËÐеÄphp½Å±¾¡£
ÄÚÈÝ£º
#! /bin/sh
echo "this is my test!";
date >> /root/test1.txt;
/usr/bin/php5 /var/www/index.php;
ÒÔÉ϶¨Ê±ÈÎÎñ¾Í¿ÉÒÔÖ´ÐÐÁË£¡
Ïà¹ØÎĵµ£º
ÈçÏÂphp´úÂë
<?php
$type='a';
$target='type';
$a=array(1,2,3);
a($target);
function a($type)
{
global $$type;
var_dump($$type);
}
?>
Ô¤¼ÆÊä³öµÄÊÇstring(1)”a”
¿ÉÊǽá¹ûÊÇ
Notice: Undefined variable: a in D:\web\global.php on ......
×òÌìÉϰàµÄʱºò£¬·¢ÏÖgoogle adµÄ¹ã¸æÉÏÓÐÁËÊÕÈ룬µ«ÊÇϰëÖ®ºó¾ÓÈ»·¢ÏÖad±»“0”ÁË¡£È¥ÍøÉϲéÁËÏà¹Ø×ÊÁÏ£¬·¢ÏÖÁËÎÊÌâ¡£
ÄÇôGoogleÊÇÈçºÎÈ·¶¨AdsenseÓû§×ÔÐеã»÷¹ã¸æµÄÄØ£¿
¼Çס£¬¾ÍÔÚÄãÔø¾×¢²áGoogle AdsenseÓû§µÄʱºò£¬Google¾ÍÖªµÀÄãµÄIPµØÖ·£¬×ÓÍøÒÔ¼°ÄãµçÄÔϵͳµÄÆäËû×ÊÁÏ¡£ÔÚGoogleµÄÊý¾Ý¿âÖÐÒ»Ö±¼ ......
<p>04¼¶ÐÂÉúÃûµ¥</p>
<table border="1" width="80%" cellpadding="0">
<tr>
<td width="10%" align="center">Id</td>
<td width="20%" align="center">Name</td>
<td width="10%" align="center">Age</td>
<td width="10%" align="cent ......
<?
error_reporting(2047);#±¨¸æËùÓзǷ¨µÄ´íÎó
ob_start();
function RMB ($RMB=0,$Format='') {
/*
*/
$RMB=@preg_Replace(
array('/([, ]|£¤|0$|)/','/(.){2,}/'),
array('','.'),
$RMB);
if(eregi("[^0-9.]",$RMB))return "·Ç·¨½ð¶î";
if($RMB==0)retur ......