You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
355 B

<?php
/*
*mysql队列
CREATE TABLE `sky_queue` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`orderindex` int(10) unsigned NOT NULL DEFAULT '0',
`k` varchar(32) NOT NULL DEFAULT '',
`content` text,
PRIMARY KEY (`id`),
KEY `k_dateline` (`k`,`orderindex`)
) ENGINE=InnoDB AUTO_INCREMENT=58 DEFAULT CHARSET=utf8mb4;
**/
class mysqlQueue{