PHP 数组中的人类可读列表

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP 数组中的人类可读列表相关的知识,希望对你有一定的参考价值。

// ex: human_list(array('one', 'two', 'three)) --> one, two, and three
function human_list($itemList) {
	switch(count($itemList)) {
		case 0: return '';
		case 1: return $itemList[0];
		default:
			$last = array_pop($itemList);
			return implode(', ', $itemList).' and '.$last;
	}
}

以上是关于PHP 数组中的人类可读列表的主要内容,如果未能解决你的问题,请参考以下文章

如何以人类可读的格式输出(到日志)多级数组?

php 人类可读的文件大小

PHP 人类可读随机字符串

PHP 人类可读文件大小

PHP 使字节化人类可读

PHP(或jQuery)有没有办法检查字符串是不是是人类可读的?