Server IP : 127.0.0.2 / Your IP : 3.17.159.53 Web Server : Apache/2.4.18 (Ubuntu) System : User : www-data ( ) PHP Version : 7.0.33-0ubuntu0.16.04.16 Disable Function : disk_free_space,disk_total_space,diskfreespace,dl,exec,fpaththru,getmyuid,getmypid,highlight_file,ignore_user_abord,leak,listen,link,opcache_get_configuration,opcache_get_status,passthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,php_uname,phpinfo,posix_ctermid,posix_getcwd,posix_getegid,posix_geteuid,posix_getgid,posix_getgrgid,posix_getgrnam,posix_getgroups,posix_getlogin,posix_getpgid,posix_getpgrp,posix_getpid,posix,_getppid,posix_getpwnam,posix_getpwuid,posix_getrlimit,posix_getsid,posix_getuid,posix_isatty,posix_kill,posix_mkfifo,posix_setegid,posix_seteuid,posix_setgid,posix_setpgid,posix_setsid,posix_setuid,posix_times,posix_ttyname,posix_uname,pclose,popen,proc_open,proc_close,proc_get_status,proc_nice,proc_terminate,shell_exec,source,show_source,system,virtual MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /usr/share/doc/php-symfony-process/ |
Upload File : |
Using Symfony shipped with Debian for custom application ======================================================== It is possible to use Symfony shipped with Debian for custom applications. All that is need for this is a PSR-4 compatible autoloader that respects Debian's default php include path. One example doing so is using Symfony's ClassLoader component: 1. Install the ClassLoader component If it is not already present on the system, this can be done with: # apt-get install php-symfony-class-loader 2. Implement autoloading code into your custom application An example php code is found below. Symfony application awaits the autoloader in file 'vendor/autoload.php'. <?php // In case you override the default include_path that is configured for // php in Debian, please uncomment the following line. //set_include_path('/usr/share/php' . PATH_SEPARATOR . get_include_path()); require_once 'Symfony/Component/ClassLoader/ClassLoader.php'; use Symfony\Component\ClassLoader\ClassLoader; $loader = new ClassLoader(); $loader->setUseIncludePath(true); $loader->register(); ?> 3. Install the Symfony components you need for your application # apt-get install php-symfony-COMPONENT-1> php-symfony-COMPONENT-2 -- Daniel Beyer <dabe@deb.ymc.ch> Sat, 16 Jan 2016 21:18:53 +0100