Новые книги

Безусловно, на жизнь каждого человека прямое влияние оказывает его окружение. Успешные люди отмечают, что большую часть окружающих их людей составляют такие же успешные люди. Книга «Неслучайные связи» написана с одной лишь целью: выявить пошаговые алгоритмы эффективного выстраивания связей человека. Кто-то скажет, что это дело случая, везения или вовсе удачи! «Оказаться в нужном месте в нужное время» – вот что часто нам приходится слышать. Да, отчасти это соответствует действительности, однако исследования показали, что лишь на 15 %. И наша главная задача – разобраться, в чем же секрет оставшихся 85 %. Книга написана для желающих систематизировать свои представления об отношениях между людьми, проанализировать свой социальный капитал и научиться двигаться к поставленным целям шаг за шагом.
Master Android from first principles and begin the journey toward your own successful Android applications!

Dear Reader,

First, welcome to the world of Android! We’re entering a new era of mobile application development, one marked by open platforms and open source, to take ‘walled gardens’ and make them green houses for any and all to participate in. Android is relatively easy for developers, and I believe that this innovation will help generate a large ecosystem of developers and consumers within a very short time. This means that budding developers such as yourself will have many opportunities to design and build your own applications and you’ll have a huge and hungry customer base.

Second, welcome to the book! Its purpose is to start you on your way with building Android applications, and to help you master the learning curve. Android is already a rich framework, comparable in many ways to the richness Android of desktop Java environments. This means that there is a lot of cool stuff for you to pick up along your journey in order to create the slickest, most useful apps Android you can imagine.

The source code for the code samples in this book is all available from the Apress site, so you can stay as hands-on and practical as you like while I introduce you to the core of Android, and invite you to experiment with the various classes and APIs we’ll be looking at. By the time you’ve finished this book, you’ll be creating your own Android applications and asking yourself what your next great application will be…!

Enjoy!

Mark Murphy

get_included_files

Учебник РНР
Назад Вперёд

get_included_files

(PHP 4)

get_included_files - возвращает массив из имён файлов, включаемых (include) или необходимых.

Описание

array get_included_files (void)

Возвращает массив имён всех файлов, которые включены с использованием include(), include_once(), require() или require_once().

Файлы, включённые или затребованные несколько раз, показаны в возвращаемом массиве только один раз.

Примечание: файлы, включённые с использованием директивы конфигурации auto_prepend_file, не входят в возвращаемый массив.

Пример 1. get_included_files()
<?php

include("test1.php");
include_once("test2.php");
require("test3.php");
require_once("test4.php");

$included_files = get_included_files();

foreach($included_files as $filename) {
    echo "$filename\n";
}

?>

сгенерирует на выводе:

test1.php
test2.php
test3.php
test4.php

Примечание: в PHP 4.0.1pl2 и предыдущих версиях для get_included_files() принималось, что требуемые файлы имели расширении имени .php; другие расширения не возвращались. Массив, возвращаемый функцией get_included_files(), был ассоциативным и содержал только имена файлов, включённых с помощью include() и include_once().

См. также include(), include_once(), require(), require_once() и get_required_files().


Назад Оглавление Вперёд
get_extension_funcs Вверхget_loaded_extensions