5
5

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

ワンラインPSR-0準拠クラスオートローダー

Last updated at Posted at 2012-08-28

シンプルなPSR-0準拠クラスオートローダーを無理やり1行にして焼き直した。

<?php
// PHP 5.1.2 ~ PHP 5.2.x
spl_autoload_register(create_function('$c', '@include_once strtr($c, "\\_", "//").".php";'));

// PHP 5.3.0 or later
spl_autoload_register(function($c) { @include_once strtr($c, '\\_', '//').'.php'; });

Link

5
5
2

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
5
5

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?