PHP 中的批处理
sp; $db->execute( $sth, $id ); return true; } public static function add( $function, $args ) { $db = ProcessingItems::get_db(); $sth = $db->prepare( ''INSERT INTO processing_items VALUES (null,?)'' ); $db->execute( $sth, array( $function ) ); $res = $db->query( "SELECT last_insert_id()" ); $id = null; while( $res->fetchInto( $row ) ) { $id = $row[0]; } foreach( $args as $key => $value ) { $sth = $db->prepare( ''INSERT INTO processing_args VALUES (null,?,?,?)'' ); $db->execute( $sth, array( $id, $key, $value ) ); } return true; } public static function get_all() { $db = ProcessingItems::get_db(); $res = $db->query( "SELECT * FROM processing_items" ); $rows = array(); while( $res->fetchInto( $row ) ) { $item = array(); $item[''id''] = $row[0]; $item[''function''] = $row[1]; $item[''args''] = array(); $ares = $db->query( "SELECT key_name, value FROM processing_args WHERE item_id=?", $item[''id''] ); while( $ares->fetchInto( $arow ) ) $item[''args''][ $arow[0] ] = $arow[1]; $rows []= $item; } return $rows; }}?>
清单 7 所示的测试脚本将一个条目添加到处理队列中。
为了演示这种 |
凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢! |