摘要: 1、冒泡排序(数组排序) function bubble_sort( $array) { $count = count( $array); if ($count <= 0 ) return false; for($i=0 ; $i<$count; $i ++){ for($j=$count-1 ; 阅读全文
posted @ 2019-10-14 16:56 jongty 阅读(252) 评论(0) 推荐(0) 编辑
摘要: 1、安装crontabs linux应该都有crontab,没有的话可以安装一下: yum install crontabs 安装完以后开启crontab服务 service crond start 用以下的方法启动、关闭这个cron服务: service crond start //启动服务 service crond stop //关闭服务 service crond rest 阅读全文
posted @ 2019-10-14 16:42 jongty 阅读(1555) 评论(0) 推荐(0) 编辑