ryoakg
5/23/2016 - 2:18 PM

prevent-instantiation.php

<?php
class Utils {
    private function __construct() {}

    static function f($x){
        return __CLASS__ . ':' . __METHOD__ . ":" . $x;
    }
}

Utils::f('abc');                // 'Utils:Utils::f:abc'
$o = new Utils();               // error!