Новые книги

Comprehensive Real-World Guidance for Every Embedded Developer and Engineer

This book brings together indispensable knowledge for building efficient, high-value, Linux-based embedded products: information that has never been assembled in one place before. Drawing on years of experience as an embedded Linux consultant and field application engineer, Christopher Hallinan offers solutions for the specific technical issues you're most likely to face, demonstrates how to build an effective embedded Linux environment, and shows how to use it as productively as possible.

Hallinan begins by touring a typical Linux-based embedded system, introducing key concepts and components, and calling attention to differences between Linux and traditional embedded environments. Writing from the embedded developer's viewpoint, he thoroughly addresses issues ranging from kernel building and initialization to bootloaders, device drivers to file systems.

Hallinan thoroughly covers the increasingly popular BusyBox utilities; presents a step-by-step walkthrough of porting Linux to custom boards; and introduces real-time configuration via CONFIG_RT--one of today's most exciting developments in embedded Linux. You'll find especially detailed coverage of using development tools to analyze and debug embedded systems--including the art of kernel debugging.

• Compare leading embedded Linux processors

• Understand the details of the Linux kernel initialization process

• Learn about the special role of bootloaders in embedded Linux systems, with specific emphasis on U-Boot

• Use embedded Linux file systems, including JFFS2--with detailed guidelines for building Flash-resident file system images

• Understand the Memory Technology Devices subsystem for flash (and other) memory devices

• Master gdb, KGDB, and hardware JTAG debugging

• Learn many tips and techniques for debugging within the Linux kernel

• Maximize your productivity in cross-development environments

• Prepare your entire development environment, including TFTP, DHCP, and NFS target servers

• Configure, build, and initialize BusyBox to support your unique requirements
Эта книга научит вас правильно, а главное – эффективно общаться с людьми в письменной форме. Воспользуйтесь рекомендациями авторов и вы удивитесь, насколько успешной станет ваша деловая и личная переписка.

Переход от PHP/FI 2 к PHP 3



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

Приложение C. Переход от PHP/FI 2 к PHP 3

Содержание
О несовместимости в 3.0
Начальный/конечный тэги
if..endif-синтаксис
while-синтаксис
Типы выражений
Сообщения об ошибках изменены
Сокращённый цикл вычисления boolean
Возвращаемые функциями значения TRUE/FALSE
Иная несовместимость

О несовместимости в 3.0

PHP 3.0 переписан полностью. В нём имеется соответствующий разборщик/parser, который намного надёжнее и быстрее, чем в 2.0. 3.0, а также значительно меньше расходует память. Однако некоторые из этих улучшений невозможны без изменения совместимости, как в синтаксисе, так и в функциональности.

Кроме того, PHP-разработчики попытались прочистить синтаксис и семантику PHP в версии 3.0, и это также вызвало появление некоторой несовместимости. Мы считаем, что в долговременном плане это изменения к лучшему.

В этой главе будет сделана попытка помочь вам преодолеть несовместимости, возникающие при переходе от PHP/FI 2.0 к PHP 3.0. Новые возможности здесь не упоминаются без необходимости.

Программа конвертации, которая может автоматически конвертировать ваши старые PHP/FI 2.0-скрипты, существует. Её можно найти в поддиректории convertor дистрибутива PHP 3.0. Эта программа отлавливает только синтаксические изменения, поэтому вы в любом случае должны внимательно прочитать эту главу.


Назад Оглавление Вперёд
Обработка глобальных переменных Вверх Начальный/конечный тэги