Bueno la idea es, es OOP o no. Hay cosas que no necesariamente es OOP como por ejemplo el archivo index.php de la librería de Zend framework en el directorio de public, es así
Código PHP:
Ver original<?php
// Define path to application directory
// Define application environment
|| define('APPLICATION_ENV', (getenv('APPLICATION_ENV') ?
getenv('APPLICATION_ENV') : 'production'));
// Ensure library/ is on include_path
realpath(APPLICATION_PATH
. '/../library'), )));
/** Zend_Application */
require_once 'Zend/Application.php';
// Create application, bootstrap, and run
$application = new Zend_Application(
APPLICATION_ENV,
APPLICATION_PATH . '/configs/application.ini'
);
$application->bootstrap()
->run();
Si te fijas está creado en forma estructurada, aunque usa OOP.