php 我个人的PHP实用程序函数集合
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 我个人的PHP实用程序函数集合相关的知识,希望对你有一定的参考价值。
<?php
class accorelib {
/**
* Prints out contents of variable surrounded with <pre> tags for easier analysis
*
* @param [Any] $variable - the variable to print out to page
* @return void
*/
public function pretty_dump(Any $variable) {
echo '<pre>' . var_dump($variable) . '</pre>';
}
/**
* Reads whole file and returns content
*
* @param String $filename
* @return void
*/
public function read_file(String $filename) {
$fx = fopen($filename, 'r');
$content = fread($fx, filesize($filename));
fclose($fx);
return $content;
}
}
以上是关于php 我个人的PHP实用程序函数集合的主要内容,如果未能解决你的问题,请参考以下文章
PHP 用于在会话中保留数组的实用程序函数。
分享PHP中的10个实用函数
分享PHP中的10个实用函数
PHP中的10个实用函数
分享PHP中的10个实用函数
实用程序PHP函数来分页SQL查询