php分页查询mysql结果的base64处理方法示例
程序员文章站
2024-03-12 18:44:02
本文实例讲述了php分页查询mysql结果的base64处理方法。分享给大家供大家参考,具体如下:
public function public_about(){...
本文实例讲述了php分页查询mysql结果的base64处理方法。分享给大家供大家参考,具体如下:
public function public_about(){ $sql= "selectc.catid,c.catname,c.catdir,from_base64(p.content) from v9_page p joinv9_category c on c.catid=p.catid where c.parentdir = 'jmwm/'"; if(isset($_request['biaoshi'])){ $sql= "selectc.catid,c.catname,c.catdir,p.content from v9_page p join v9_category c onc.catid=p.catid where c.catdir like '{$_request['biaoshi']}%'"; } $mydb= pc_base::load_model('mymodel'); $mpages= $mydb->query_listinfo($sql); $this->array_to_base64($mpages); // $article['content']=base64_encode(toutf8($article['content'])); $msg= array(); $msg['returncode']= "0"; $msg['msg']= togbk("关于联系"); $msg['comment']= $mpages; echo jsonformat($msg); // return_msg(0,"关于联系",$mpages); } public function array_to_base64(&$array){ foreach($array as $key => $value) { if(is_array($value)) { $this->array_to_base64($array[$key]); } elseif($key=="content"){ $array[$key]=base64_encode(toutf8($value)); }else{ $array[$key]=togbk($value); } } }
ps:这里再为大家提供几款比较实用的base64在线编码解码工具供大家使用:
base64编码解码工具:
在线图片转换base64工具:
base64在线编码解码 utf-8版:
base64在线编码解码 gb2312版:
更多关于php相关内容感兴趣的读者可查看本站专题:《php+mysql数据库操作入门教程》、《php+mysqli数据库程序设计技巧总结》、《php面向对象程序设计入门教程》、《php数组(array)操作技巧大全》、《php字符串(string)用法总结》、《php网络编程技巧总结》及《php常见数据库操作技巧汇总》
希望本文所述对大家php程序设计有所帮助。
推荐阅读
-
php分页查询mysql结果的base64处理方法示例
-
php分页查询mysql结果的base64处理方法示例
-
php使用mysql_query查询超大结果集超内存的解决方法 - 走一趟再说
-
php查询mysql数据库并将结果保存到数组的方法_PHP教程
-
php使用mysql_query查询超大结果集超内存的解决方法,phpmysql_query_PHP教程
-
php中mysqli 处理查询结果集的几个方法
-
Mysql中分页查询的两个解决方法比较_php实例
-
PHP使用PDO抽象层获取查询结果的方法示例
-
PHP使用mysql_fetch_object从查询结果中获取对象集的方法_PHP教程
-
PHP将MySQL的查询结果转换为数组并用where拼接的示例