Home > Backend Development > PHP Tutorial > 代码分析-哪位能给下面这段php代码写个详细分析,最好具体到每一行。

代码分析-哪位能给下面这段php代码写个详细分析,最好具体到每一行。

WBOY
Release: 2016-06-02 11:34:56
Original
944 people have browsed it

代码分析php

final class Flash {

<code>const FLASHES_KEY = '_flashes';private static $flashes = null;</code>
Copy after login

private function __construct() {
}

<code>public static function hasFlashes() {    self::initFlashes();    return count(self::$flashes) > 0;}public static function addFlash($message) {    if (!strlen(trim($message))) {        throw new Exception('Cannot insert empty flash message.');    }    self::initFlashes();    self::$flashes[] = $message;}public static function getFlashes() {    self::initFlashes();    $copy = self::$flashes;    self::$flashes = array();    return $copy;}private static function initFlashes() {    if (self::$flashes !== null) {        return;    }    if (!array_key_exists(self::FLASHES_KEY, $_SESSION)) {        $_SESSION[self::FLASHES_KEY] = array();    }    self::$flashes = &$_SESSION[self::FLASHES_KEY];}</code>
Copy after login

}

?>

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template